home *** CD-ROM | disk | FTP | other *** search
- echo off
- echo Relocate the command interpreter
- echo By Prof. Timo Salmi, ts@chyde.uwasa.fi, Wed 07-08-1991
- echo .
-
- rem The idea of this simple batch is to show how you can alter
- rem the location of your command interpreter. On my system r: is
- rem the ramdisk. This can be useful e.g. if you handle floppy disks
- rem which do not have the system files on them.
-
- if not exist r:\cmand\nul md r:\cmand
- copy a:\command.com r:\cmand\command.com
- set comspec=r:\cmand\command.com
- echo on
-